home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / Centri / Centri.dir / 00090_Script_Drop43 < prev    next >
Text File  |  1999-02-25  |  543b  |  22 lines

  1.  
  2. on mouseup me
  3.   if inside(point(the loch of sprite 66, the locv of sprite 66),the rect of sprite 20) then
  4.     go to frame 30
  5.     
  6.     set the visibility of sprite 30 = false
  7.     
  8.   else
  9.     nothing
  10.   end if
  11. end
  12.  
  13. on mouseWithin me
  14.   if inside(point(the loch of sprite 37,the locv of sprite 37), the rect of sprite 66) then
  15.     set the visibility of sprite 20 = TRUE
  16.     set the loc of sprite 20 to point (the mouseh, the mousev)
  17.     updateStage
  18.   else
  19.     set the visibility of sprite 20 = FALSE
  20.   end if
  21.   updateStage
  22. end